crypto/tls.clientHandshakeStateTLS13.certReq (field)

8 uses

	crypto/tls (current package)
		handshake_client_tls13.go#L30: 	certReq       *certificateRequestMsgTLS13
		handshake_client_tls13.go#L435: 		hs.certReq = certReq
		handshake_client_tls13.go#L546: 	if hs.certReq == nil {
		handshake_client_tls13.go#L551: 		AcceptableCAs:    hs.certReq.certificateAuthorities,
		handshake_client_tls13.go#L552: 		SignatureSchemes: hs.certReq.supportedSignatureAlgorithms,
		handshake_client_tls13.go#L563: 	certMsg.scts = hs.certReq.scts && len(cert.SignedCertificateTimestamps) > 0
		handshake_client_tls13.go#L564: 	certMsg.ocspStapling = hs.certReq.ocspStapling && len(cert.OCSPStaple) > 0
		handshake_client_tls13.go#L579: 	certVerifyMsg.signatureAlgorithm, err = selectSignatureScheme(c.vers, cert, hs.certReq.supportedSignatureAlgorithms)